Use SciMLTesting v1.2 (folder-based run_tests)#65
Merged
ChrisRackauckas merged 1 commit intoJun 14, 2026
Conversation
Convert test/runtests.jl to the SciMLTesting v1.2 folder-discovery model: bare `using SciMLTesting; run_tests()`. Core = top-level test/*.jl (core_tests.jl extracted self-contained from the inline @safetestsets, alloc_tests.jl unchanged); QA = test/qa/ (unchanged). test_groups.toml unchanged. Behavior-preserving: GROUP=Core/All runs Core only, GROUP=QA runs qa.jl only, matching the prior dispatch. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
4308d37 to
fbc48cc
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Converts
test/runtests.jlto the SciMLTesting v1.2 folder-discovery model.The whole
test/runtests.jlis now:Folder layout (folder name matches
test_groups.tomlkey casing):test/*.jl—core_tests.jl(the inline@safetestsets extracted into a self-contained file) andalloc_tests.jl(unchanged). Runs underGROUP=CoreandGROUP=All.test/qa/with its existingtest/qa/Project.tomlsub-env. Runs only underGROUP=QA(folder-discovery always excludes QA fromAll, matching the prior dispatch where QA only ran whenGROUP=="QA").test/test_groups.tomlis unchanged.Dependency edits:
test/Project.toml: addSciMLTesting(+[compat] SciMLTesting = "1"); dropPkg(the v1.2 harness owns allPkgops — notest/*.jlreferencesPkganymore).SafeTestsets/Testretained.test/qa/Project.toml: addSciMLTesting+SafeTestsets(+ compat);[sources]path kept relative.Behavior-preserving: the exact set of tests run under each
GROUPvalue is unchanged. Verified end-to-end locally on Julia 1.11:GROUP=Core→Core/alloc_tests.jl(16 pass) +Core/core_tests.jl(28 pass, 2@test_broken);GROUP=QA→QA/qa.jl(10 pass, exercising sub-env activation).Ignore until reviewed by @ChrisRackauckas.